home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / games / mdlv13.zip / MDLSRC.ZIP / MAKEFILE < prev    next >
Text File  |  1996-03-28  |  357b  |  17 lines

  1. # Makefile for the sample program test.c
  2. #
  3. # -g for debug info, -Wall for all warning messages, -v for verbose
  4. CFLAGS  = -Wall -DUSEGRX -O6 -m486
  5. L       = -lm -lgrx20
  6. CC      = gcc
  7.  
  8. .cc.s:
  9.     $(CC) $(CFLAGS) -c $<
  10.  
  11. OBJS    = \
  12.         mdl.o bg_grx.o bg_mouse.o mdl_3d.o mdl_2d.o mdl_io.o
  13.  
  14. prog : $(OBJS)
  15.     $(CC) -O6 -m486 -o mdl $(OBJS) $(L)
  16.  
  17.